home *** CD-ROM | disk | FTP | other *** search
/ Ubisoft - ECTS 99 (UK) (Disc 2) (Press Kit) / Ubisoft - ECTS 99 (UK) (Disc 2) (Press Kit).bin / Credits.dcr / 00025_Rollover Cursor Change.ls < prev    next >
Encoding:
Text File  |  1999-08-15  |  5.6 KB  |  138 lines

  1. property spriteNum, myCursorType, myBuiltInCursor, myCursorMember, myCustomCursor, myCustomMask, mySprite, mySavedCursor
  2.  
  3. on getBehaviorDescription
  4.   return "ROLLOVER CURSOR CHANGE" & RETURN & RETURN & "Changes the cursor when the mouse rolls over the current sprite. Choose one of the pointers included with Director, or specify two 1-bit 16x16 pixel bitmap members: one to act as the pointer image, the other to define the transparent/opaque areas of the cursor." & RETURN & RETURN & "TIPS:" & RETURN & "Place a single pixel at the topRight and bottomLeft of the image itself to create what is in fact a 17x17 pixel bitmap.  These extra pixels will not appear in the cursor (they will be clipped) but the mask will align with them.  This ensures that the opaque area surrounds the cursor image correctly." & RETURN & RETURN & "Set the regPoint of the image to define the cursor's hotspot." & RETURN & RETURN & "PARAMETERS:" & RETURN & "* EITHER - Use one of Director's built-in cursors." & RETURN & RETURN & "* OR - Check button to use your own bitmap images." & RETURN & "* Custom Image " & RETURN & "* Custom Mask" & RETURN & RETURN & "To use custom images, ensure that the check button is on."
  5. end
  6.  
  7. on getBehaviorTooltip me
  8.   return "Use with graphic sprites." & RETURN & RETURN & "Modify the cursor when the" & RETURN & "mouse rolls over the sprite." & RETURN & "Use built-in or custom images."
  9. end
  10.  
  11. on beginSprite me
  12.   SetSpriteCursor(me)
  13. end
  14.  
  15. on endSprite me
  16.   mySprite.cursor = mySavedCursor
  17. end
  18.  
  19. on SetSpriteCursor me
  20.   if spriteNum < 1 then
  21.     if the runMode = "Author" then
  22.       ErrorAlert(me)
  23.     end if
  24.   end if
  25.   mySprite = sprite(me.spriteNum)
  26.   mySavedCursor = mySprite.cursor
  27.   if voidp(myCursorType) then
  28.     mySprite.cursor = myBuiltInCursor
  29.     exit
  30.   end if
  31.   case myCursorType of
  32.     "Built-in cursor":
  33.       mySprite.cursor = myBuiltInCursor
  34.     "Cursor member":
  35.       myCursorMember = value(myCursorMember)
  36.       cursorList = [myCursorMember.number]
  37.       mySprite.cursor = cursorList
  38.     "1 bit bitmap":
  39.       myCustomCursor = value(myCustomCursor)
  40.       cursorList = [myCustomCursor.number]
  41.       if myCustomMask <> "no mask" then
  42.         myCustomMask = value(myCustomMask)
  43.         cursorList.append(myCustomMask.number)
  44.       end if
  45.       mySprite.cursor = cursorList
  46.   end case
  47. end
  48.  
  49. on ErrorAlert me
  50.   behaviorName = string(me)
  51.   delete word 1 of behaviorName
  52.   delete char -30001 of behaviorName
  53.   delete char -30001 of behaviorName
  54.   alert("BEHAVIOR ERROR: Frame " & the frame & ", Sprite " & me.spriteNum & RETURN & RETURN & "Behavior " & behaviorName & "has been attached to the frame." & RETURN & RETURN & "It will have no effect, and should be removed from the behavior channel.")
  55. end
  56.  
  57. on getPropertyDescriptionList me
  58.   if not (the currentSpriteNum) then
  59.     exit
  60.   end if
  61.   propertyDescriptionList = [:]
  62.   cursorTypes = []
  63.   cursorMembersList = GetCursorMembers(me)
  64.   cursorBitmapsList = GetCursorBitmaps(me)
  65.   cursorMasksList = duplicate(cursorBitmapsList)
  66.   cursorMasksList.addAt(1, "no mask")
  67.   cursorMembers = cursorMembersList.count()
  68.   bitmapCursors = cursorBitmapsList.count()
  69.   if cursorMembers then
  70.     cursorTypes.append("Cursor member")
  71.   end if
  72.   if bitmapCursors then
  73.     cursorTypes.append("1 bit bitmap")
  74.   end if
  75.   if cursorTypes.count() then
  76.     cursorTypes.addAt(1, "Built-in cursor")
  77.     propertyDescriptionList.addProp(#myCursorType, [#comment: "CHOICE OF TYPE - Use which type of cursor?", #format: #string, #range: cursorTypes, #default: cursorTypes[1]])
  78.     propertyDescriptionList.addProp(#myBuiltInCursor, [#comment: "CHOICE OF CURSOR   -               Built-in cursor:", #format: #cursor, #default: 280])
  79.   else
  80.     return [#myBuiltInCursor: [#comment: "Use which cursor?", #format: #cursor, #default: 280]]
  81.   end if
  82.   if cursorMembers then
  83.     propertyDescriptionList.addProp(#myCursorMember, [#comment: "-             Cursor member:", #format: #member, #range: cursorMembersList, #default: cursorMembersList[1]])
  84.   end if
  85.   if bitmapCursors then
  86.     propertyDescriptionList.addProp(#myCustomCursor, [#comment: "-   1 bit bitmap (image):", #format: #bitmap, #range: cursorBitmapsList, #default: cursorBitmapsList[1]])
  87.     propertyDescriptionList.addProp(#myCustomMask, [#comment: "1 bit bitmap   (mask):", #format: #bitmap, #range: cursorMasksList, #default: cursorMasksList[1]])
  88.   end if
  89.   return propertyDescriptionList
  90. end
  91.  
  92. on GetCursorMembers me
  93.   cursorMembersList = []
  94.   maxCastLib = the number of castLibs
  95.   repeat with theCastLib = 1 to maxCastLib
  96.     maxMember = the number of castMembers of castLib theCastLib
  97.     repeat with memberNumber = 1 to maxMember
  98.       theMember = member(memberNumber, theCastLib)
  99.       if theMember.type = #cursor then
  100.         if theMember.name = EMPTY then
  101.           cursorMembersList.append(theMember)
  102.           next repeat
  103.         end if
  104.         cursorMembersList.append(theMember.name)
  105.       end if
  106.     end repeat
  107.   end repeat
  108.   return cursorMembersList
  109. end
  110.  
  111. on GetCursorBitmaps me
  112.   cursorBitmapsList = []
  113.   maxCastLib = the number of castLibs
  114.   repeat with theCastLib = 1 to maxCastLib
  115.     maxMember = the number of castMembers of castLib theCastLib
  116.     repeat with memberNumber = 1 to maxMember
  117.       theMember = member(memberNumber, theCastLib)
  118.       if theMember.type = #bitmap then
  119.         if theMember.depth > 1 then
  120.           next repeat
  121.         end if
  122.         if theMember.width > 20 then
  123.           next repeat
  124.         end if
  125.         if theMember.height > 20 then
  126.           next repeat
  127.         end if
  128.         if theMember.name = EMPTY then
  129.           cursorBitmapsList.append(theMember)
  130.           next repeat
  131.         end if
  132.         cursorBitmapsList.append(theMember.name)
  133.       end if
  134.     end repeat
  135.   end repeat
  136.   return cursorBitmapsList
  137. end
  138.